@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
  font-family: "PingFang SC", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clear {
  clear: both;
}

.clearfix {
  clear: both;
  zoom: 1;
}
.clearfix::after {
  content: "";
  height: 0;
  display: block;
  overflow: hidden;
  clear: both;
}
.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.slim-scrollbar::-webkit-scrollbar{
  width:1px;
  background-color: rgba(51, 51, 51,.2);
}
.slim-scrollbar::-webkit-scrollbar-thumb{
  background-color: rgba(51, 51, 51,.8);
}

.hidden{
  display: none;
}

/* flex */
.flex{
  display: flex;
}

.flex-between{
  justify-content: space-between;
}

/* header */
.header {
  width: 100%;
  min-width: 1200px;
  height: 80px;
  background: #BCF226;
}
.header .header-container {
  width: 1180px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-container .logo {
  width: 213px;
  height: 46px;
}
.header .header-container .logo img {
  width: 213px;
  height: 46px;
  display: block;
}
.header .header-container .nav {
  display: flex;
  align-items: center;
}
.header .header-container .nav .nav-item {
  height: 25px;
  font-size: 18px;
  font-weight: 500;
  color: #47323B;
  line-height: 25px;
  margin-right: 30px;
}
.header .header-container .nav .sign {
  width: 99px;
  height: 40px;
  border: 1px solid #47323B;
  font-size: 18px;
  font-weight: 400;
  color: #47323B;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s;
  display: block;
}
/* .header .header-container .nav .sign:hover{
  background-color: #47323B;
  color: #fff;
} */

/* footer */
.color-line {
  width: 100%;
  height: 15px;
  background: linear-gradient(to right, #28C1FF 50%, #BCF226 50%);
}

.footer-menu {
  width: 100%;
  min-width: 1200px;
}
.footer-menu .foot-title {
  height: 37px;
  font-size: 26px;
  font-weight: 500;
  color: #333333;
  line-height: 37px;
  margin-bottom: 22px;
}
.footer-menu .foot-form {
  width: 1200px;
  padding-top: 37px;
  padding-bottom: 48px;
  margin: 0 auto;
}
.footer-menu .foot-form .form-item {
  display: flex;
  margin-bottom: 26px;
}
.footer-menu .foot-form .form-item:last-child {
  margin-bottom: 0;
}
.footer-menu .foot-form .form-label {
  width: 86px;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  line-height: 25px;
}
.footer-menu .foot-form .form-content {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}
.footer-menu .foot-form .form-content a {
  height: 26px;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 26px;
  letter-spacing: 1px;
  margin-right: 24px;
}
.footer-menu .foot-form .form-content a:last-of-type {
  margin-right: 0;
}

.footer {
  width: 100%;
  min-width: 1200px;
  background: #272525;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #999999;
  line-height: 25px;
  padding: 23px 0 22px;
}
.footer a {
  color: #999999;
}
.footer .item ~ .item {
  margin-left: 40px;
}